-- Transfer MUs using an attribute
-- Transfers the MUs to the different successors of the present station according to an attribute of the MU.
-- Transfer the MUs depending on an attribute of the MU
-- Transfers the MUs to the different successors of the present station according to an attribute of the MU
-- @ is the MU that triggers the control
is
do
	inspect @.MU_attribute
	when value1 then
		@.move(1);
	when value2 then
		@.move(2);
	-- here you can add criteria for additional successors
	end;
end;
/*MU_attribute:Enter the attribute of the MUs to be changed when it transfers.
value1:Enter the value of the attribute|that transfers the MU to the first successor.|You can also enter several values and separate them with commas.
value2:Enter the value of the attribute|that transfers the MU to the  second successor.|You can also enter several values and separate them with commas.
*/